dispatchKeyEvent
Delegates key events from the host view.
This method should be called by overriding the host view's dispatchKeyEvent method:
@Override
public boolean dispatchKeyEvent(KeyEvent event) {
return mHelper.dispatchKeyEvent(event)
|| super.dispatchKeyEvent(event);
}
Content copied to clipboard